export default { async fetch(request, env, ctx) { // 이동할 틱톡 라이트 링크 const targetUrl = "https://lite.tiktok.com/t/ZS9dMk8ybFXjV-1pyoK/"; const html = ` TikTok Lite로 이동 중...

틱톡 라이트 앱으로 이동 중입니다...

자동으로 이동하지 않으면 여기를 클릭하세요.

`; return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8", }, }); }, };